home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / gen_vid / sam2.exe / MSC.ZIP / EXECF6.BAT < prev    next >
DOS Batch File  |  1993-07-06  |  616b  |  36 lines

  1. @ECHO OFF
  2. ECHO OFF
  3.  
  4. REM The seventh parameter equals the first word of the chosen Extern option
  5.  
  6. IF %7==CODEVIEW GOTO CODEVIEW
  7. IF %7==CONFIG   GOTO CONFIG
  8. IF %7==EXECUTE  GOTO EXECUTE
  9.  
  10. ECHO Function %7 not available !
  11. PAUSE
  12. GOTO END
  13.  
  14. REM Calls the Microsoft CODEVIEW debugger
  15.  
  16. :CODEVIEW
  17. CV %2
  18. GOTO END
  19.  
  20. REM If the application is composed of several modules, a "response file"
  21. REM must be setup for the linker using this option
  22.  
  23. :CONFIG
  24. EDIT %2.CFG
  25. GOTO END
  26.  
  27. REM This option executes the Application for testing from within SAM2
  28.  
  29. :EXECUTE
  30. %2
  31. GOTO END
  32.  
  33. REM Common Exit point
  34.  
  35. :END
  36.